Tharun P Karun's Blog

Install Remote Desktop in Ubuntu

Most of the user would love to get a linux vps since its cheaper than windows vps right? So in this tutorial I would be teaching you how to install Remote Desktop on your Ubuntu VPS (Latest Version).

Requirements:

  1. PuTTY.
  2. TightVNC.
  3. Basic Knowledge of using SSH with PuTTY.

Procedure:

PuTTY

In the image which is displayed here with caption “PuTTY”, Its what Program PuTTY looks like and you can use it to connect to any VPS (Linux) for entering SSH Commands.

apt-get update

apt-get upgrade

sudo apt-get install ubuntu-desktop

sudo /etc/init.d/gdm start
sudo dpkg-reconfigure xserver-xorg

sudo apt-get install tightvncserver

vncserver :1 -geometry 1024×768 -depth 16 -pixelformat rgb565

vi ~/.vnc/xstartup

Comment (To comment, Just put # symbol before the required line) “x-window-manager” and add this on the end:

gnome-session &

It Should Look like this :

#!/bin/sh

xrdb $HOME/.Xresources
xsetroot -solid grey
x-terminal-emulator -geometry 80×24+10+10 -ls -title “$VNCDESKTOP Desktop” &
#x-window-manager &
gnome-session &

reboot

vncserver :1 -geometry 1024×768 -depth 16 -pixelformat rgb565

That’s All. Comments are welcome!